home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * DebugUtil.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- #include "MyConfiguration.h"
-
- #define kForceAssert false
-
-
- #if kCompileWithAssertions
- p_export void my_assert ( Boolean, const StringPtr );
- #else
- #define my_assert(a,b)
- #endif
-
-
- /*** EOF ***/
-